﻿
// *******************************************
// These are global Javascript utility functions.
// *******************************************

function ViewLocationMap(Address1, City, State, Zip) {
    var orig = Address1 + "," + City + " " + State + " " + Zip;
	var locUrl = "http://maps.google.com/maps?q=" + orig;
	var popwin = window.open(locUrl, "POPUP", "height=600,width=700,status=yes,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
}

function DatePickerSetup() {
	// Datepicker
	$("input[id$='DatePicker']").datepicker({
		showOn: 'both',
		buttonImage: '/images/calendar.gif',
		buttonImageOnly: true,
		inline: true,
		changeMonth: true,
		changeYear: true
	}).css("vertical-align", "middle").next().css("vertical-align", "middle");
}

function FormatRequestCommentForDB(comment)
{
	var comm = jQuery.trim(comment);
	comm = comm.replace("\r\n", "<br>");
	comm = comm.replace("\n", "<br>");
	comm = comm.replace("\r", "<br>");
	comm = comm.replace("<iframe>", "\"iframe\"");
	if (comm.length > 4000) comm = comm.substring(0, 3999);
	return comm;
}

