
var win = null;
function actionNewWindow(mypage,myname,w,h,scroll){
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no';
	//document.frmAdmin.hidControl.value = ctrl;
	win = window.open(mypage, myname, settings);
	
}


function doOpenPatternWindow(url, w, h)
{
	if(doSelectImprint(this));
		actionNewWindow(url, "Pattern", w, h, 'yes');
}

function doShowRate(w, h){
	actionNewWindow("http://www3.tuoitre.com.vn/transweb/tygia.htm", "TyGia", w, h, 'no');
}
