function todaydate(){
var today_date= new Date()
var myyear=today_date.getYear()
var mymonth=today_date.getMonth()+1
var mytoday=today_date.getDate()
document.write(myyear+"/"+mymonth+"/"+mytoday)
}

function UnevoView(ID){
var T = screen.height/2-400;
var L = screen.width/2-500;
window.open('viewer.htm?img=' + ID,'UnevoView','resizable=yes,scrollbars=yes,status=no,height=800,width=1000,top=' + T  + ',left=' + L);
return false;

}

function UnevoLoadImage(){
  var img = ''//can place default image value here
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  for (var i=0;i<vars.length;i++) {
    var pair = vars[i].split("=");
    if (pair[0] == 'img') {
      img =  pair[1];
    }
  }
	var y = document.getElementById('UnevoImage');
	y.src = '/photo/' + img + '.jpg';
	return false;
}



