function openWindow(name,type, URL, position){
	if (!position) position = 20
	
	popupWidth = 450;
	popupHeight = 400;
	
	if (type == 'product'){
		popupWidth = 450;
		popupHeight = 400;		
	}
	
  properties = 'width=' + popupWidth + ',height=' + popupHeight +',scrollbars=yes,left=' + position + ',top=' + position + ',status=yes,resizable=yes';
  app_demo = window.open(URL,name,properties);
	window.app_demo.focus();
  return false;
}

// Note about opening windows:
// ----------------------------
// To achieve thin titlebar with only close button in Netscape only,
// add the attribute "dependent" to the window properties