function forceResize(){
	document.imBGa.width = document.body.clientWidth;
	document.imBGb.width = document.body.clientWidth;
	document.imBG2.height = document.body.clientHeight * 0.6;
}	

function insert_variable_html(text) {
	
	fckeditor001.focusEditor();
	
	if(HTMLArea.is_ie) {
		fckeditor001.insertHTML(text + " " );
	} else {
		fckeditor001.insertNodeAtSelection(document.createTextNode(text + " "));
	}
	
	
}

function blankFields() {

	for(x=0;x<document.myOwnLogin.elements.length;x++)
	{
		if((document.myOwnLogin.elements[x].type == "text") || (document.myOwnLogin.elements[x].type == "password")) {
			if (document.myOwnLogin.elements[x].value == '') {
				alert ('All fields must be completed');
				return false;
			}
		}
	} 
	
	return true;
}

function checkForm(){
	return true;
}

