/**************************************************************************/
/* **************************** Pit-eck Store **************************** */
/**************************************************************************/



// Popup Opener

function popupOpener(page_t, w, h){
	
	var url = "/pop.php?t=" + page_t;
	screen_w = (screen.width - w) / 2;
	screen_h = (screen.width - h) / 2;
	
	popwin = window.open(url, "popup", "width=" + w + ",height=" + h + ",toolbar=no,resizable=no,scrollbars=yes,location=no,directories=no,menubar=no,top=" + screen_h + ",left=" + screen_w);
	popwin.focus();
		
}

// Validators

function numericString(id){
	
	var i;
	var textbox = document.getElementById(id);
	
	for (i = 0; i < textbox.value.length; i++){
		
		if (textbox.value.charCodeAt(i) < 48 || textbox.value.charCodeAt(i) > 57){
			textbox.value = textbox.value.slice(0, i);
		}
	}
	
}

function verificaSub(){
	if (document.search.squery.value == '' || document.search.squery.value == ' '){
		alert('Please, enter a query');
	}else{
		document.search.submit();
	}
}

function verificaQuick(){
	if (document.quickfind.model.value == 'none' || document.quickfind.part.value == 'none'){
		alert('Please, you must choose a manufacturer, a model and a motorcycle part');
	}else{
		document.quickfind.submit();
	}
}

function verificaPdrtOpc(){
	if (document.shopform.opt_color.value == '0' || document.shopform.opt_size.value == '0'){
		alert('Please, select the color and size...');
	}else{
		document.shopform.submit();
	}
}