// JavaScript Document

// Add to Favourites
function add_to_fav() {
var ua=navigator.userAgent.toLowerCase();
if ((ua.indexOf("msie")!=-1) && (ua.indexOf("opera")==-1) && (ua.indexOf("webtv")==-1))
window.external.addFavorite(window.location.href, 'Urbanite Design Studio');
else alert("Press Ctrl+D to add site to your favorites");
}

function popup_window (url, w, h, wname) {
	scr_left = 0;
	scr_top = 0;
	wname = wname;
	new_window = window.open (url, wname , "title=image,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width="+w+",height="+h+",top="+scr_top+",left="+scr_left);
	new_window.focus();
	return new_window;
}

// Show/Hide
function showhide(targetId, targetId2){
	target = document.getElementById(targetId);
	if (targetId2 == "loginerror") {
		target2 = document.getElementById(targetId2);
		if (target2.style.display == "block") { target2.style.display = "none" }
	}
	if (target.style.display == "none") { target.style.display = "block"; }
	else { target.style.display = "none"; }
}