
/*
	Author:				Bettina Pattenson
	Date Created		5/21/2007
	Project:			B2B Redesign
	Name:				open_POS.js
*/

/****************************************************************
 Launches new POS windows
*****************************************************************/

/* Launch to POS login */

function openPOS(){
		var loc = "https://" + sitename + ".healthgrades.com/physicians/index.cfm?fuseaction=authenticate&modtype=UserAuth&modact=login";
		window.open(loc);
				
		}
		
/* Open new window for phys results */		
function OpenNewWin(url,w,h) {
	window.open (url, 'Edit', 'left=20,top=20,width=' + w + ',height=' + h + ',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1');
	}		