// JavaScript Document
function newicon(){
mday = new Date(document.lastModified);
now = new Date();
pday = Math.floor((now.getTime()-mday.getTime())/(24*60*60*1000));

if (pday <=14){
document.write('<span class="new">New!!</span>');
 }
}
 function openWin(win_url,win_name,attribute)
{
window.open(win_url,win_name,attribute).focus();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}