/* 
This function operates the popup window capability for links 
*/


function ThirdWindow(url) {

var ElementWindow = window.open(url,'ThirdWin','width=502,height=325, location=yes, scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes,top=40,left=60');

ElementWindow.focus();

return false;
}

