//-----------------open new window------------------------//
var newPopup;
function newwindow_blank(url){
	window.open(url.href)
}
function newwindow_self(url){
	window.location.href=url.href;
}
function newwindow_url(url){
	window.location.href=url;
}
function chkPost(){
	alert('ö駡з');
}
function chkPostFull(){
	alert('·ҹö駡з ͧҡ鹷  ءҹ');
}
function popupwindow1(url,width,height){
	var wleft = (screen.width - width) / 2;
  	var wtop = (screen.height - height) / 2;
	window.open(url, 'x','toolbar=0 ,width='+width+' ,height='+height+',top='+wtop+',left='+wleft+'');
	//vwindow.resizeTo(width, height);
	//vwindow.focus();
}

