function openWin(data){
	newwin = window.open(data, "newwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=680,height=800");
	newwin.focus();
}

function openWinWorks(data){
	newwin = window.open(data, "newwin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=650,height=500");
	var left= screen.width / 2 - 325;
	var top = screen.height / 2 - 300;
	newwin.moveTo(left,top);
	newwin.focus();
}
