/*	
Created by: Arnel C. Navarra for CARGOTRANZ.COM
Date: 09/25/2003
Updated: 11/19/2003
Email: webservant@onlineservant.com

	*************************************************
	*  You may use this script only if this header  *
	*  is NOT altered or deleted. You may email me  *
	*  if you find this script helpful. I'm open    *
	*  for discussion. Thank you.                   *
	*  Otherwise, you are not authorized to use     *
	*  this script.                                 *
	*************************************************
*/

//for changing the image width and height:
function changeImageSize(n,w,h) {
	document.images[n].width = w;
	document.images[n].height = h;
}

//undo focus on the clicked button:
function blurMe(thisButton) {
		thisButton.blur();
		return false;
}

//for changing cell color:
function changeBgColor(tableCell,bg,fg) {
	tableCell.style.backgroundColor = bg;
	tableCell.style.color = fg;
}

//for pages under construction:
function noLinkNotice() {
	alert("Sorry. The link is still under development. Please try again later. Thank you.");
}

//for submitting form data:
function submitThisForm(f) { 
	document.forms[f].submit();
}

//for document.write:
function print(text) {
	document.write(text);
}

//for popup ads:
function popup(size) {
	window.open("popup_"+size+".html", target="_blank", "scrollbars=no,resizable=no,width="+size+",height="+size+",left=100px,top=50px");
}

function popForm(em,con) {
	window.open("sendto.php?mailto="+em+"&contact="+con, target="_blank", "scrollbars=no, menubar=no, width=450, height=480, left=75, top=50");
}