var _POPUP_FEATURES = 'location=0, statusbar=0, menubar=0, width=610, height=843';


function raw_popup(url, target) {

  
  features = _POPUP_FEATURES;
  var theWindow =
    window.open(url, target, features);
  theWindow.focus();
  return theWindow;
}

function link_popup(src) {
	
	
	var hi = src.getAttribute('href');
	var bye = src.getAttribute('target');
	
    raw_popup(src.getAttribute('href'), src.getAttribute('target'));

	
}


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=1,statusbar=0,menubar=1,resizable=1,width=680,height=1000');");

}


