// JavaScript Document
function popupwi(){
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth = 540;
	winHeight = 460;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 1;
	
	window.open("moving/index.html", "Moving", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}
function popitup(url) {
	newwindow=window.open(url,'name','height=200,width=150');
	if (window.focus) {newwindow.focus()}
	return false;
}
function popupwiContact(){
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth = 540;
	winHeight = 460;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 1;
	
	window.open("../moving/index.html", "Moving", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=0,resizable=0");
	return;
}