function openWindow(site,width,height) {

	var newWindow=	window.open(site,"_blank","menubar=no,resizable=yes,width="+width+",height="+height);

	newWindow.focus();

 }
