$(document).ready(function(){

	initFormValidation();

});


// ****************
// Form Validation
// ****************

function initFormValidation(){

	var msg = "Something went wrong during the login. Please, check username and password and try again.";

	// if error during login
	if($("#edit-pass")){
		//alert($(".error"));
	}
}

function promptError(msg){

	//confirm(msg);
	/*
	if(){
		self.location.href = "http://www.getthepoint.net";
	}else{
		return;
	}*/
}

// **************************************
// Function for show/hide download list.
// **************************************

function toggleList(action,obj) {
	target = document.getElementById('part_'+obj);
	lnk = document.getElementById('hide_'+obj);
	lnk2 = document.getElementById('show_'+obj);
	
	if(action == 'show') {
		target.style.display = 'block';
		lnk.className = 'hide_active';
		lnk2.className = 'show_active';
	}else {
		target.style.display = 'none';
		lnk.className = 'hide';
		lnk2.className = 'show';
	}
}