<!--
var ie = document.all ? 1 : 0
var ns = document.layers ? 1 : 0

if(ie){
document.write('<style type="text/css">')
document.write('.BUTTON { font-size:8pt; font-family:verdana, arial, helvetica; font-weight:bold; color:#ffffff; ')
document.write(' border-style:solid; border-color:#C0C0C0; border-width:1px; background-color:#C0C0C0;} ')
document.write('.textfield {background-color:#FFFFFF;border-color: #808080;border-style: solid;border-width: 1;color:#C0C0C0;font-size: 8pt;font-family: verdana;}')
document.write('.submitter {background-color: #808080; border-color: #CCCCCC; border-width: 2; color: #FFFFFF; font-size: 8pt; font-family: verdana; font-weight: bold;}')
document.write('.fielder {border-color: #C0C0C0; border-width: 1; color: #808080; font-size: 8pt; font-family: verdana; font-weight: bold; }')
document.write('</style>')
}

function UserConcatenate()
{
	var sLogin=document.frmLogin.cLogin.value;
	if (sLogin.indexOf('@') == -1)
	{
		document.frmLogin.cLogin.value = document.frmLogin.cLogin.value + "@smscorp.com";
	}
}

function sub() {	
	window.opener.location.reload();
	close();
	return true;
}

function Cancel_onclick(){ 	
	close()
}	

function ClipBoard() 
{
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
}

function Resizer(pW, pH) {
	var w=pW, h=pH;
	if (w >= screen.availWidth)  w = screen.availWidth - 50; 
	if (h >= screen.availHeight) h = screen.availHeight - 50;
	window.resizeTo(w, h); //Wide by Tall 
	window.moveTo (10,10);
	}
//-->
