// JavaScript Document
function openWindow(name)
{
	var url = '';
	var host = 'http://www.fluimmune500.com/';
	var props = '';
	if(name=='FAQ')
	{
		props = 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,height=600,width=800,left=470,top=150';
		url = host + 'faq.html';
	}
	else if(name=='CONTACT')
	{
		props = 'toolbar=no,statusbar=no,location=no,scrollbars=no,resizable=no,height=300,width=500,left=680,top=150';
		url = host + 'contact.html';
	}
	else if(name=='PRIVACY')
	{
		props = 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,height=600,width=800,left=470,top=150';
		url = host + 'privacy.html';
	}
	else if(name=='TERMS')
	{
		props = 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,height=600,width=800,left=470,top=150';
		url = host + 'terms.html';
	}
	popUp(url,name,props);
}

function popUp(url,name,props)
{
	window.open(url,name,props);
}