// JavaScript Document


//opening new windows


function openWinsmall(myURL) {   window.open(myURL.href, "win"+(new Date()).getSeconds(),     'width=310,height=395,scrollbars=yes');   return false; }

function openWinmedium(myURL) {   window.open(myURL.href, "win"+(new Date()).getSeconds(),     'width=480,height=380,scrollbars=yes');   return false; }

function openWinnew(myURL) {   window.open(myURL.href, "win"+(new Date()).getSeconds(),     'width=775,height=550,scrollbars=yes,resizable=yes,scrollbars=yes,toolbar=yes,location=yes,status=yes,menubar=yes');   return false; }



