function openWindow(url) {      														 
	window.open(url,'_blank','left=170,screenX=170,top=50,screenY=185,width=580,height=620,scrollbars=yes');
}

function openWindow2(url,width,height) {
	window.open(url,'_blank','left=170,screenX=170,top=50,screenY=185,width='+width+',height='+height+',scrollbars=yes');
}

