﻿function OpenPopup(strURL)
{
	var strFeat; 
	
	strFeat='width=700,height=400,'
	strFeat=strFeat+'directories=0,'
	strFeat=strFeat+'resizable=0,'
	strFeat=strFeat+'scrollbars=1,'
	strFeat=strFeat+'toolbar=0,'
	strFeat=strFeat+'menubar=0,'
	strFeat=strFeat+'status=0' 
	
	window.open(strURL, 'PopupWin', strFeat); 
}

function ClosePopup()
{
	self.opener = '';
	self.close();
}