function ISP_goTo( url ) {
	window.location.href = url;
}
function ISP_navBar( tableCellRef, hoverFlag, navStyle ) {
	if ( hoverFlag ) {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#69c';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#c00';
				}
		}
	} else {
		switch ( navStyle ) {
			case 1:
				tableCellRef.style.backgroundColor = '#036';
				break;
			default:
				if ( document.getElementsByTagName ) {
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000';
				}
		}
	}
}

function ISP_navBarClick( tableCellRef, navStyle, url ) {
	ISP_navBar( tableCellRef, 0, navStyle );
	ISP_goTo( url );
}
function ISP_warning(){
alert("اين لينك در حال ساخت مي باشد بعدا مراجعه نماييد")
}
function ISP_window(url, width, height, scrol){
window.open(url,"small","width="+ width +",height="+ height +",toolbar=0,status=0,scrollbars="+scrol);
}
