function popUp(url,theName,theWidth,theHeight){
    newWin=window.open('',theName,'toolbar=no,scrollbars=yes,width=' + theWidth + ',height=' + theHeight + ',resizable=yes');
	newWin.location = url;
    return;
}
