function a() 
{ 
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
} 

	function terms(adress) {// used for terms & privacy
	window.open(adress,'terms','scrollbars=yes,width=340,height=530');
	}
	
	function bank(adress) {
	window.open(adress,'bank','resizable=yes,scrollbars=yes,status=yes,menubar=yes,width=800,height=700');
	}
	
	function other(adress) { // used for extenral links
	window.open(adress,'somethingelse','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600');
	}

