// copyright www.maratz.com 

// target blank W3C validation hack
function outLinks() {
	var i, outLink;
	if (document.getElementsByTagName('a')) {
		for (i=0; (outLink=document.getElementsByTagName('a')[i]); i++) {
			if (outLink.href.indexOf("weblink/goto") != -1 || outLink.href.indexOf("http://www.beautymag.net/") == -1) {
				outLink.setAttribute("target", "_blank");
			}
			if (outLink.href.indexOf("external/phpadsnew") != -1 || outLink.href.indexOf("http://www.beautymag.net/") == -1) {
				outLink.setAttribute("target", "_blank");
			}
		}
	}
}

// focus on the first field of the first form in a document
function focusOnForm() {
	var loginPolje = document.getElementById('name');
	if (loginPolje) {
		loginPolje.select();
	} 
} 
 
window.onload = function() {
	outLinks();
	focusOnForm();
	defaultStatus=" BeautyMag.net ";
}