
//if the windows name is blank then name it so we can push to it
if (window.name == '')
	window.name = "opparent";

var x = window.name;
	
//full path to push.asp must be supplied prior to deployment
function newOperator(clientcode, ref) {
	var url = "http://www.hellooperator.com/push.asp?cid=" + clientcode + "&opener=" + x + "&ref=" + ref;
	window.open(url,'hide_me',"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=1,left=1,width=200,height=100");
}
