﻿
function HtmlPop(width, height, htmlText, title)
{
  var generator=window.open('','name','height='+height+',width='+width+"'");
  generator.document.write('<html><head><title>' + title + '</title>');
  generator.document.write('<link rel="stylesheet" href="App_Themes/Default/DetailPage.css">');
  generator.document.write('</head><body style="padding:0;margin:0;"><div id="PopUp">');
  generator.document.write(htmlText);
  generator.document.write('<p><a href="javascript:self.close()">Close</a></p>');
  generator.document.write('</div></body></html>');
  generator.document.close();
}

function NewPopupSize(url, width, height) {
    link = window.open(url,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + width + ",height=" + height);
}

function ListentoUsername()
{
    var el = document.getElementById("ctl00_ContentPlaceHolder1_txtUsername");
    if(el.value=="ENTER USERNAME")
        el.value="";
    else if(el.value=="")
        el.value="ENTER USERNAME";
}
