var myWindow;
var myWincount = new Date()//Math.random(129,99999);
//alert(myWincount);
function opCWin(url) {
	myWincount++;
    var width = 650;
    var height = 550;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "width=" + width + ",height=" + height + 
        ",scrollbars,menubar,resizable,status=no,left=" + left + ",top=" + top + 
        ",screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "avconet"	+ myWincount, windowFeatures);
	myWindow.focus();
}

function printit(){
	if (!window.print){
		alert("You need NS4.x or IE5 to use this print button!");
		return;
	}
window.print()
}

