function indexMe(art){
	var goto = document.getElementById(art).value;
	window.location = "transp.php?"+goto;
}
function searchT(){
	var findMe = document.getElementById("search").value;
	document.location.href = "?search="+findMe;
}
function block_showhide(id) {
	if (document.getElementById(id).style.display == "none") {
		document.getElementById(id).style.display = "block";
	} else {
		document.getElementById(id).style.display = "none";
	}
}
function alert_show(msg) {
        alert(msg);
}
function swf_viewer(swf, wt, ht, fvrs){
	LeftPosition = (screen.width) ? (screen.width-wt)/2 : 0; 
	TopPosition = (screen.height) ? (screen.height-ht)/2 : 0;
	window.open("fxs.php?fx=swf_view&swf="+swf+"&fvrs="+fvrs,'IDSC','top=' + TopPosition + ',left=' + LeftPosition + ',width='+wt+',height='+ht+',directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes');
}
function validate_required(field,alerttxt){
	with (field){
		if (value==null||value==""){
			alert(alerttxt);
			return false;
		}
		else {
			return true
		}
	}
}
function validate_email(field,alerttxt){
	apos = field.value.indexOf("@");
	dotpos = field.value.lastIndexOf(".");
	if (apos<1 || dotpos-apos<2) {
		alert(alerttxt);
		return false;
	}
	else {
		return true;
	}
}
