function openWin(uri,name,w,h) {
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	l = scWidthCenter - (w / 2);
	t = scHeightCenter - (h / 2);
	op =",left=" + l + ",top=" + t + ",toolbar=no,location=no,derectories=no,status=no,menubar=no,scrollbars=0,resizable=0,width=" + w + ",height=" + h;
	window.open(uri,name,op);
}

function openWindow(uri,name) {
	op =",left=50,top=50,toolbar=no,location=no,derectories=no,status=1,menubar=no,scrollbars=1,resizable=1,width=600,height=600";
	window.open(uri,name,op);
}

