function myPopup(urlname) {
	window.open(urlname,'name','height=650,width=500,resizable=0,status=0');
}
function myPopupRS(urlname,width,height,resizable,scrollbars) {
	window.open(urlname,'name','height=' + height + ',width=' + width + ',resizable=' + resizable + ',status=0,scrollbars=' + scrollbars);
}
function recordSettings() {

  res = screen.width + "x" + screen.height;
  createCookie('screen_res',res,365);

  ref = document.referrer;
  createCookie('document_referrer',ref,365);

//  doc_name = document.URL;
  doc_name = document.location.href;
  createCookie('page_name',doc_name,365);

}
