function openWin(URL){
	childWin = window.open(URL, 'childWin', 'menubar=no, resizable=yes, scrollbars=yes, width=650, height=550');
	childWin.focus();
}

function openSendLinkWindow(){
	sendLinkWin = window.open("/sendlinkform.php", "sendLinkWin", "resizable=no, menubar=no, width=600, height=400");
	document.sendLinkFrm.target = "sendLinkWin";
	document.sendLinkFrm.submit();
}
