	function open_window(url) {
		mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=550');
		
		if(mywin.open) { 
	
		window['mywin'].focus();
		window['mywin'].focus(); 
		}
		}
		

function firstWindow() {
ElementWindow = window.open('privacyPolicy.aspx?trust=yes',
'FirstWin','width=400,height=500,scrollbars=1')
}

function secondWindow() {
ElementWindow = window.open('terms.aspx?trust=yes',
'SecondWin','width=400,height=500,scrollbars=1')
}