function openVA(){
	URL = "http://www.creativevirtual.com/Customer/bot.htm"
	uid = new Date.getTime() + Math.floor(Math.random()*100);
	URL += '?uid='+uid;		//this parameter is required
	window.open(URL+'&SiteContext=SITE1&StartContext= FAQ.Home%20Insurance ','VA','width=580,height=492');
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	if (window.innerWidth){ 
		width = window.innerWidth - 350;
	}
	else if (document.all){ 
		width = document.body.clientWidth - 350;
	}
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=730,left = ' + width + ',top = 0');");
	}


