	function ValidateForm () {
		var incomplete = 'false';
		var select_tags = document.getElementsByTagName('select');
		for (x = 0; x < select_tags.length; x++) {
			if ((select_tags[x].value == '') || (select_tags[x].value == 'Please Select'))
				incomplete = 'true';
		}
		
		if (incomplete == 'true') {
			alert ('Please choose all selectable options');
			return false;
		} else {
			return true;
		}
	}


function popShop(p)
{ 

$("#PopContainer-"+p).before("<div class=\"popFloat\" id=\"PopWrapper-"+p+"\"><center>Loading<img src=\"http://lib.store.yahoo.net/lib/yhst-51568362379717/8-0.gif\"><br/><br/><a href=\"javascript:cancelMe();\"><u>Cancel</u></a></center></div>");
var timedd=setTimeout("popShop2('"+p+"')",1);

}

function cancelMe()
{
$(".popFloat").hide();
}

function popShop2(p)

{

	var html = document.createElement('script');
	html.type = 'text/javascript';
	html.src = 'http://www.eyhosting.com/client_data/urbancollector/popshop.php?id=' + p;
	//html.src = 'http://www.eyhosting.com/client_data/urbancollector/popshop-new.php?id=' + p;

	document.getElementById('PopWrapper-'+p).appendChild (html);
	
	
	return true;

}

function popLinkShow(n){

$("#Pop-"+n).show();

}

function popLinkHide(n){

$("#Pop-"+n).hide();

}

function popLinkRemove(n){

$('#PopWrapper-'+n).remove();

}

function switch2(idee,tab)
{
if(tab==1)
{
$("#right-"+idee).hide();
$("#left-"+idee).show();


$("#LeftTab-"+idee).removeClass("disabledTab");
$("#LeftTab-"+idee).addClass("highlightTab");


$("#RightTab-"+idee).removeClass("highlightTab");
$("#RightTab-"+idee).addClass("disabledTab");

}

if(tab==2)
{
$("#right-"+idee).show();
$("#left-"+idee).hide();

$("#RightTab-"+idee).removeClass("disabledTab");
$("#RightTab-"+idee).addClass("highlightTab");


$("#LeftTab-"+idee).removeClass("highlightTab");
$("#LeftTab-"+idee).addClass("disabledTab");
}

}

