function OpenWindow(url,width,height) {
	var newWindowFeatures="dependent=0,Width="+width+",Height="+height+",top=50,left=50,resize=1"; 
	var nw=window.open(url,Math.floor(Math.random()*100000),newWindowFeatures); 
}

