function OpenTextPopup(url) {
	var rnd = (Math.round((Math.random()*999)+1));
	var width=600;
	var height=450;
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(url, "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
}
function OpenPrint(id) {
	var rnd = (Math.round((Math.random()*999)+1));
	var width=540;
	var height=400;
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(BASE_URL+id+";print;1;", "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
}
function OpenPop(id) {
	var rnd = (Math.round((Math.random()*999)+1));
	var width=466;
	var height=350;
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(BASE_URL+id+";popup;1;", "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
}
function OpenWall(id) {
	var rnd = (Math.round((Math.random()*999)+1));
	var width=466;
	var height=350;
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(BASE_URL+id+";wallpaper;1;", "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=yes,location=no,menubar=no,resizable=yes,status=no,directories=no,toolbar=no");
}
function OpenImagePopup(url,width,height) {

	var rnd = (Math.round((Math.random()*999)+1));
	var top=Math.round((screen.height-height)/2);
	var left=Math.round((screen.width-width)/2);
	this.open(url, "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no");
}

function OpenPopupWindow(url,width,height) { OpenImagePopup(url,width,height); }

function OpenImagePopupID(id,width,height) {
	OpenImagePopup(CMS_URL+id,width,height);
}
