//***************************************************************//
// Filename: makewebsitenow.js
// Written By: Yasir Zaka Bhatti
// Creation Date: 14-02-2007
//***************************************************************//
function submitpage(mypage) {
	document.profile.action=mypage;
	document.profile.submit();
	return true;	
}

function submit_form(myfield) {
	document.profile.categoryid.value= 0; // category needs to be selected otherwise automatically submitted with wrong details
	document.profile.savedate.value="no";
	document.profile.submit();
	return true;
}

function set_homepage(myfield) {
	var mylinksubmissionurl = document.profile.linksubmissionurl.value;;
	var myhomepage = new Array();
	if (mylinksubmissionurl.substring(0,7) == 'http://') {
		//alert(mylinksubmissionurl.substring(0,mylinksubmissionurl.indexOf('/',7)));
		document.profile.homepage.value= mylinksubmissionurl.substring(0,mylinksubmissionurl.indexOf('/',7));
	} else {
		document.profile.homepage.value=document.profile.linksubmissionurl.value;	
	}

	/*myhomepage = mylinksubmissionurl.split('/');
	alert(myhomepage[0]);
	alert(myhomepage[1]);
	alert(myhomepage[2]);*/

	
	return true;
}
