// JavaScript Document
function openPopup(url,name,width,height,resizable,scrollbars,menubar,toolbar,location,directories,status) {	
	popup = window.open(url, name, 'toolbar=' + toolbar + ',scrollbars=' + scrollbars + ',location=' + location + ',statusbar=' + status + ',menubar=' + menubar + ',resizable=' + resizable + ',width=' + width + ',height=' + height );
	if(popup != null)
	{
		
		popup.focus();
	}

}

function openComingSoon()
{	
	openPopup("/comingsoon.html","HelpWindow",350,300,false,false,false,false,false,false,false);	
}
