function popupWindow(win,width,height,target){
	
	newWindow = window.open(win,target,'toolbar=no,location=no,scrollbars=no,resizable=yes,width='+width+',height='+height+',left=0,top=0');
	newWindow.focus();
}
