function externalSitePopUp(page,width,height,top,left )
{ 
	var yes		= 1; 
	var no		= 0; 
	var menubar     = yes;  // The File, Edit, View Menus 
	var scrollbars  = yes; // Horizontal and vertical scrollbars 
	var locationbar = yes;  // The location box with the site URL 
	var directories = no;  // the "What's New", "What Cool" links 
	var resizable   = yes;  // Can the window be resized? 
	var statusbar   = no;  // Status bar (with "Document: Done") 
	var toolbar     = yes;  // Back, Forward, Home, Stop toolbar 
 
	features = "" + 
		"width=" + width + "," + 
		"height=" + height + "," + 
		"top=" + top + "," + 
		"left=" + left + ""; 
	features += "" + 
		(menubar ? ",menubar" : "") + 
		(scrollbars ? ",scrollbars" : "") + 
		(locationbar ? ",locationbar" : "") + 
		(directories ? ",directories" : "") + 
		(resizable ? ",resizable" : "") + 
		(statusbar ? ",statusbar" : "") + 
		(toolbar ? ",toolbar" : ""); 

	window.open(page,'externalSite',features);	
} 