function gallerypop(imagename) {
popwin = this.open(imagename, "gallery", "width=600,height=470,left = 0,top = 0, toolbar=no,menubar=no,location=no,scrollbars=yes,status=no,resize=no,noresize");
}


//DATE POP
function DatePopUp(oForm)
{
	var sPage = "datepicker_2.php?PickedDate=" + oForm.value+ "&FormName=" + oForm.name;
	var x=300;
	var y=190;
	var x_offset = document.width/2;
	var y_offset = document.height/2;
	
	var windetails = "width=" + x + ",height=" + y + ",toolbar=no,scrollbars=no,status=no,resizable=no,screenX=" + x_offset + ",screenY=" + y_offset;  
	win = window.open(sPage,"DatePicker", windetails);
}
//MyCP Survey
//link javascript:PopUpWidow()
var oCurrent_window;
		function PopUpWidow()
		{
			iWidth  = 650; iHeight = 500;
			// www.dine.to
			sPage_name = "http://www.dine.to/mycp/external_surveys/batonrouge/outside_survey_page.html";
			
			//Local Server
			//sPage_name = "../../Dine_to/mycp/external_surveys/batonrouge/outside_survey_page.html";
			
			iX_offset = parseInt( (screen.availWidth/2) - (iWidth/2) );
			iY_offset = parseInt( (screen.availHeight/2) - (iHeight/2) );

			//sValue = document.getElementById(sID_field_name).value;

			sUrl = sPage_name;

			sWindow_features = 'left=0,top=0,toolbar=0,scrollbars=1,resizable=1,width=' + iWidth + ',height=' + iHeight;
			if (!oCurrent_window || oCurrent_window.closed) {
				oCurrent_window = window.open(sUrl,'current_window', sWindow_features );
			} else {
				oCurrent_window.location = sUrl
				oCurrent_window.focus();
			}

		}