// for Credit Card's popUp window
function newwin(help) { 
	var MainWindow = window.open(help,"help","toolbar=no,location=no,menubar=no,scrollbars=yes,width=450,height=500,resizeable=no,status=yes");
}

// for iHouse Newsletters popUp window
function newwinNewsletter(help) { 
	var MainWindow = window.open(help,"help","toolbar=no,location=no,menubar=no,scrollbars=yes,width=1024,height=768,resizeable=yes,status=yes");
}

// for iHouse's popUp window
var win = null;
function newWindow(mypage,myname,w,h,features) {
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	settings += features;
	win = window.open(mypage,myname,settings);
	win.window.focus();
}