//Include Window Opener Javascript File
<!-- Begin
function openWindow(SourceURL, intWidth, intHeight)
{
var NewWin=parent.window;
 NewWin   // Set some defaults
	
    width=intWidth;
    height=intHeight;
	url = SourceURL;


	//if a window is already open then close it 
	//then open a new one with URL passed from link above
if (NewWin && NewWin!=null && NewWin!=""&& NewWin!=parent.window){
	NewWin.close()
	NewWin=window.open(url,"Sample","resizable=yes,status=no,scrollbars=yes,width=" + width + ",height=" + height);
}
//if a window has not been open then open one with URL passed from link above
else{
	NewWin=window.open(url,"Sample","resizable=yes,status=no,scrollbars=yes,width=" + width + ",height=" + height);
NewWin.focus();

}
}
//-->
