

function sendToPopUp(itemID){
	var url = "SendTo.aspx?item_id=" + itemID;
	myWindow = window.open( url , "myWindow", "height=400, width=400, resizable=yes, scrollbars=yes");
	myWindow.focus();
	myWindow.location = url;
}


function launchCalendar(formName, inputName) {

    mywindow=open('calendar.html?form='+ formName + '&input=' + inputName,'myname','resizable=no,width=350,height=270');
    mywindow.focus();
    if (mywindow.opener == null) mywindow.opener = self;
}

