/*
	@description: Dynamically include external javascript file
	@author: kb - 02/22/2005
*/
function openWin(URL) {
  aWindow=window.open(URL,"demowindow", "toolbar=no,width=600,height=370");
  return void(0);
}
function openWinLarge(URL) {
  aWindow=window.open(URL,"demowindow", "toolbar=no,width=800,height=600,scrollbars=yes,resizable=yes");
  return void(0);
}
function openWinLargeWithLocation(URL) {
	  aWindow=window.open(URL,"demowindow", "toolbar=no,location=yes,width=800,height=600,scrollbars=yes,resizable=yes");
	  return void(0);
}
function openWinSize(URL,width,height) {
  aWindow=window.open(URL,"_blank", "toolbar=no,width="+width+",height="+height);
  return void(0);
}
function openWinSizeWithLocation(URL,width,height) {
	  aWindow=window.open(URL,"_blank", "toolbar=no,location=yes,width="+width+",height="+height);
	  return void(0);
}
function openWinSizeScroll(URL,width,height) {
  aWindow=window.open(URL,"_blank", "toolbar=no,scrollbars=yes,width="+width+",height="+height);
  return void(0);
}
function openWinCalc(URL,width,height) {
  aWindow=window.open(URL,"_blank", "toolbar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height);
  return void(0);
}
