//javalib.js
var whatever = replaceAliases();

function replaceAliases()
{
		var newURL;
		newURL = window.location.href;
		newURL = newURL.replace("aiaforms.com", "paymentapplication.com");
		newURL = newURL.replace("paymee.com", "paymentapplication.com");
		newURL = newURL.replace("saprosystems.com", "paymentapplication.com");		
		if (newURL != window.location.href)
		{
//			alert("redirecting");
			window.location.href=newURL;
		}
}

function popup(url) {
  var w = 800, h = 600;
  var y;
  var x;
    w = window.innerWidth;
    h = window.innerHeight;
    x = window.screenX;
    y = window.screenY;
  var popW = 450, popH = 250;
  var leftPos = ((w-popW)/2)+y, topPos = ((h-popH)/2)+x;
  window.open(url,'popup','width='+popW+',height='+popH+',top='+topPos+',left='+leftPos+',location=no,status=no,titlebar=no,modal=yes');
}

function popupSmall(url) {
  var w = 800, h = 600;
  var y;
  var x;
    w = window.innerWidth;
    h = window.innerHeight;
    x = window.screenX;
    y = window.screenY;
  var popW = 450, popH = 200;
  var leftPos = ((w-popW)/2)+y, topPos = ((h-popH)/2)+x;
  window.open(url,'popup','width='+popW+',height='+popH+',top='+topPos+',left='+leftPos+',location=no,status=no,titlebar=no,modal=yes');
}																																																																							
