/************************************/
/***  Filename: tdp_scripts.js	    */
/***  				                */
/************************************/


function popWindow (url, name) {
	if (name == null) { name = url; }
    var popWin = window.open(url, name, "status,resizable,scrollbars,width=800,height=600");
    popWin.focus();
}

function popAnchor (url, name, w, h) {
	var popImg = window.open(url, name, "width="+w+",height="+h);
    popImg.document.close()
    popImg.focus();
}

