// JavaScript Document
// 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");
	MainWindow.window.focus();
}

// 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");
	MainWindow.window.focus();
}

// centers over screen
function newWindow(page,name,w,h,features){
	var winl = (window.screen.width-w)/2;
	var wint = (window.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;
	var name = window.open(page,name,settings);
	name.window.focus();
}

// no centering.. top left
function new_window(page,name,w,h,features){
	var name = window.open(page, name, 'width='+w+',height='+h+','+features+'');
	name.window.focus();
}
