function openWin(url, h, w, t, l) {
	window.open(url,"_blank","height = "+ h +", width = "+ w +", top = "+ t +", left = "+ l +", menubar = no, toolbar = no, scrollbars = no, status = no, resizable = no");
}

function closeWin() {
	window.close();
}