function displayYear()
{
  var time=new Date();
  var year=time.getYear();
  if (year < 2000)
  year = year + 1900;
  document.write(year);
}

function popUp(url,name,width,height,scroll) {
  window.open(url,name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable=0,width="+width+",height="+height);
}

function doblowup(title, image, description, width, height) {
    var win = open('', '', "height=" + height + ",width=" + width + ",status=yes,scrollbars=no,resizable=1,menubar=0");
    var html = '';
    html += '<html>';
    html += '<head><title>' + title + '</title>';
    html += '<link href="/custom/styles/smc.css" rel="stylesheet" rev="stylesheet" type="text/css"></head>';
    html += '<body bgcolor="#ffffff"><center>';
    html += '<span class="small_b"><a href="javascript:window.close();">CLOSE WINDOW</a></span>';
    html += '<span class="large"><br>' + description + '<p>';
    html += '<img src="' + image + '"><br>';
    html += '</body></html>';
    win.document.open();
    win.document.write(html);
    win.document.close();
}

function image_open(image_loc){
            
    HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+0,document.load_image.height+68)'></body></html>";
    popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
    popupImage.document.open();
    popupImage.document.write(HTML);
    popupImage.document.close();
    //obj_img = document.getElementById(img);
    //obj_img.src= obj_img.src;
}


