/**
 * All code protected by United States copyright law and may not be reproduced, distributed, transmitted, displayed, published or broadcast without the prior written permission of Christian.tv. 
 * All material contained are the copyrighted property of the company unless otherwise specified in association with a particular piece of material. No code owned, operated, licensed, or controlled by us may be copied, reproduced, republished, uploaded, posted, transmitted, or distributed in any way, without express permission. 
 * In the event you purchase software from Christian.tv, the software, including any files, images incorporated in or generated by the software, and data accompanying the software (collectively, the "Software") are licensed to you by us or third-party licensors for your use only. 
 * We do not transfer title to the Software to you. We (or our third-party licensors) retain full and complete title to the Software and all intellectual property rights therein. You may not redistribute, sell, auction, decompile, reverse engineer, disassemble, or otherwise reduce the Software to a human-readable form.
*/
// JavaScript Document
/*
function to go to the listing page on cancellation
*/
function listPage(url){
	  window.location = "../"+url;
}
function listPage2(url){
	  window.location = url;
}
function showUploader(){
	if(document.getElementById("ShowCheck").checked){
		document.getElementById("main").style.display="block";
		document.getElementById("main1").style.display="none";
	}else{
		document.getElementById("main").style.display="none";
		document.getElementById("main1").style.display="block";
	}
}

function checkdates(){
	//alert("hello");
}