// JavaScript Document

function setBgImageForm(element,imageFile) {
  element.style.backgroundImage="url("+imageFile+")";
  element.style.color="666666";
}

function setBgImageOverForm(element,imageFile) {
  element.style.backgroundImage="url("+imageFile+")";
  element.style.color="666666";
}

function openWindow (url) {
	var params = 'width=700,height=500,location=1,menubar=1,toolbar=0,resizable=1,scrollbars=1';
	
	if (url) {
		var refWin = window.open(url, 'refWin', params);
		refWin.focus();
	}
	
	return false;
}