<!-- hide contents from old browser.
<!--Copyrights And All ... Author : Adil Muzafar  --!>


var msgWindow;
var CopyParent;

function CopyOpen(CopyPageName)
{
	msgWindow = window.open(CopyPageName, 'copy', 'menubar=no,scrollbars=yes,width=450,height=300');
	CopyParent = window.opener;
}

function OpenFromCopyInParent(Page)
{
	window.opener.location.href=Page;
}



function CopyClose()
{
	self.close();
}




