
   function OpenPeripheralImages(id)
   {
		var win = window.open('peripheralPhotoViewer.asp?peripheral_id=' + id,'peripheralPhotos','height=400, width=400');
   }

	
	function openWin(page, w, h, fixWindow)
	{
		fixed = 'yes';
		if(fixWindow)
			fixed = "no";
			
		var win = window.open(page,'newwin','height=' + h + ', width=' + w + ',resizeable=' + fixed);
	}
	
	function jsUrl(myUrl) {
		document.location.href = myUrl;
	}