function OpenTextPopup(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=yes,location=no,menubar=no,resizable=no,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 OpenPopup(url) {
	var width=480;
	var height=340;
	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 OpenPrint(url) {
	var width=600;
	var height=400;
	var rnd = (Math.round((Math.random()*999)+1));
	var top=20;
	var left=20;
	this.open(url, "w"+rnd, "top="+top+",left="+left+",width="+width+",height="+height+",buttons=no,scrollbars=yes,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+'&w='+width+'&h='+height,width,height);
}

function openFlash(url) {
	//window.open( url, '', 'fullscreen=yes, scrollbars=auto' );
    var rnd = (Math.round((Math.random()*999)+1));
    /*
    if ( screen.availWidth<1000 ){
    */
	    var width=screen.availWidth-10;
	    var height=screen.availHeight-30;
        var top=0;
    	var left=0;
    /*
    } else if ( screen.availWidth<1050 ){
	    var width=990;
	    var height=690;
        var top=10;
    	var left=10;
    } else {
	    var width=1024;
	    var height=768;
        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");
    
}
