// JavaScript Document
function popUpImg (img, size) {
	var popWin = window.open ("", "", size);
	popWin.document.open();
	popWin.document.write ("<title>Executive Auto Sales</title>");
	popWin.document.write ("<link href='../layout.css' rel='stylesheet' type='text/css' />");
	popWin.document.write ("<img src='" + img + "' alt='' border='0' width='640' height='480'>");
	popWin.document.close();
}
function imgRoll (name, source) {
	if (document.images) {
		document[name].src = source;
	}
}
// ================= SET MENU POSITION COOKIE FUNCTION ====================
function setUser (u, p, url) {
	expiry.setTime (expiry.getTime() + (60*60*1000));
	if (u) {
		if (p) {
			document.cookie = "user=" + u + ";" + "pass=" + p + ";" + "expires=" + expiry.toGMTString() + ";";
		}
	}
	window.location = url;
}
