function cwindow(w,h,url,n) {
	l = (screen.availWidth/2)-(w/2);
	t = (screen.availHeight/2)-(h/2);
	win = window.open(url,n,"width="+w+",height="+h+",left="+l+",top="+t+",scrollbars=yes,resizable=yes");
	win.focus();
}

function oDetail(wid,wtitle,wurl,w,h) {
	var win = new Window(wid, {className: "alphacube", title: wtitle, width:w, height:h, resizable: true, url: wurl, showEffectOptions: {duration:1}});
	win.setDestroyOnClose();
	win.showCenter();
	win.show();
}