function OpenWin(strWindowType){

	var strThis=''+self.location+'&'+strWindowType+'=1';
	var strFeatures="";
	
	//if (strWindowType=='printerfriendly')
			

	if (strWindowType=='tipfriend')
			strFeatures="width=400,height=400,toolbar=0, menubar=0";
	
	
	window.open(strThis,strWindowType, strFeatures);



}

/*

toolbar=0|1  Specifies whether to display the toolbar in the new window.  
location=0|1  Specifies whether to display the address line in the new window.  
directories=0|1  Specifies whether to display the Netscape directory buttons.  
status=0|1  Specifies whether to display the browser status bar.  
menubar=0|1  Specifies whether to display the browser menu bar.  
scrollbars=0|1  Specifies whether the new window should have scrollbars.  
resizable=0|1  Specifies whether the new window is resizable.  
width=pixels  Specifies the width of the new window.  
height=pixels  Specifies the height of the new window.  
top=pixels  Specifies the Y coordinate of the top left corner of the new window. (Not supported in version 3 browsers.)  
left=pixels  
*/