
// Submit the My Account form
function myStuffFormSubmit() {
	document.myStuffForm.submit();
}
// Exapand the detalis based on the title id
function expandMyStuffFormSubmit(url, titleId) {
	document.myStuffForm.action = url + "?titleId=" + titleId;
	document.myStuffForm.submit();
}

// Based on the sort value, information for My Account page should be ordered.
function myStuffFormSort(url, sort) {
	document.myStuffForm.action = url + "?sortDropDown=" + sort;
	document.myStuffForm.submit();
}

// if digital title date is expired that at time call this function.
function renew(url, isbn) {
	
	var urlPath = url + isbn;
	window.location.href = urlPath;
}

function selectInstMsg()
{
	alert("Please select an institution in the My Account - my account detail screen. Please contact customer support if this message keeps popping up even after you have selected the institution.");
}
//if digital title date is expired but ISBN value is not there so at this time call this fucntion.
//so added the null value instead of ISBN value.
function renewWithoutIsbn(url) {
	var urlPath = url + null;
	window.location.href = urlPath;
}

// if digital title date is not expired at that time called this function and open the page for the specified url.
function openUrl(url) {
	window.location.href = url;
}

// if digital title date is not expired at that time called this function and open the page for the specified url.
function openUrlNewWindow(url) {
	window.open(url);
}

// Forgot password link to open the specified url.
function forgot(url) {
	window.location.href = url;
}

// open the url for the specified window size, its used for My Account page right side links.
function winOpen(Url) {
	window.open(Url, "popUpWin", "resizable=yes,scrollbars,copyhistory=yes,width=" + 1003 + ",height=" + 462 + ",left=" + 0 + ",top=" + 0 + ",screenX=" + 0 + ",screenY=" + 0 + "");
}

//show the My Account block
function showMyStuffBlock(titleId) {
	document.getElementById("digital_title_div_content"+titleId).style.display = "block";
	document.getElementById("mystuff_show_content"+titleId).style.display = "block";		
	document.getElementById("mystuff_hide_content"+titleId).style.display = "none";	
	document.getElementById("digital_show_bgcolor"+titleId).style.background = "none";
}

//hide the My Account block
function hideMyStuffBlock(titleId) {		
	document.getElementById("digital_title_div_content"+titleId).style.display = "none";
	document.getElementById("mystuff_show_content"+titleId).style.display = "none";
	document.getElementById("mystuff_hide_content"+titleId).style.display = "block";
	//document.getElementById("digital_show_bgcolor"+titleId).style.background = "#ffffff url(/mk_images/prodbg_gradient.jpg) repeat-y right";		
}
