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