function Go(url) {
	location.href=url;
	//window.status="Loading /"+url+"..."; //return true;
}

function GoN(url) {
	window.open(url);
	//window.status="Loading /"+url+"..."; //return true;
}

function OpenWindow(url) {
	w=600;
	h=600;
	t=Math.round(Math.random()*10000,0);
	wn='a'+t;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(url,wn,'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=1,toolbar=0,menubar=0,status=1,location=0,titlebar=no');
}

function DownWindow(url) {
	w=600;
	h=500;
	t=Math.round(Math.random()*10000,0);
	wn='a'+t;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(url,wn,'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=1,toolbar=0,menubar=0,status=1,location=0,titlebar=no');
}

function OpenSelectWindow(url) {
	w=700;
	h=500;
	t="sw"; 
	wn='a'+t;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(url,wn,'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=1,toolbar=0,menubar=0,status=1,location=0,titlebar=no');
}

function OpenWindow700(url) {
	w=700;
	h=700;
	t=Math.round(Math.random()*10000,0);
	wn='a'+t;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open(url,wn,'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=1,toolbar=0,menubar=0,status=1,location=0,titlebar=no');
}

