function openWin(html,name,features) {
	document.location.href='end.html';
	newWin = window.open(html,name,features)
	newWin.moveTo(0,0);
	newWin.resizeTo(screen.availWidth,screen.availHeight);
	newWin.focus()
}

function openBase() {
	if (screen.width <= 1024) {	
		html="smallscreen.html";
	} else {
		html="bigscreen.html";
	}
	openWin(html,'','fullscreen=yes, location=no, menubar=no, toolbar=no, status=no, scrollbars=auto, resizable=yes');
}
