function setElementProperty(p_elm, p_property, p_value){
	var elm = null;
	if(typeof(p_elm) == "object"){
		elm = p_elm;
	} else {
		elm = document.getElementById(p_elm);
	}
	if((elm != null) && (elm.style != null)){
		elm = elm.style;
		elm[ p_property ] = p_value;
	}
}
function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}
function restoreDefault(el) {
  if (el.value=="") el.value = el.defaultValue
}
function confirmBuyRedirect(){
	var win,flag
	flag = confirm('A new browser window will now open and you will be directed to our online product store.\nClick Ok to continue or Cancel to remain here.');
	if (!flag) {
	 //do nothing
	} else {
		win = window.open('http://www.product-catalog.com/heartlandindex.cfm','products');
		win.focus()
	}
}
function popUp(URL,windowname,w,h) {
	var left = (screen.width-w)/2;
	var top = (screen.height-h)/2;
	newwindow=window.open('newsletter.html','newsletter','status=1,width='+w+',height='+h+',top='+top+',left='+left);
	if (window.focus) {newwindow.focus();}
}
function getFile(URL,windowname,w,h) {
	var left = (screen.width-w)/2;
	var top = (screen.height-h)/2;
	newwindow=window.open('assets/infocenter/'+URL,'infocenter','status=0,menubar=1,resizable=1');
	if (window.focus) {newwindow.focus();}
}


