					
						function bookmarkus(url,title)
						{
							if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) 
							{
								window.external.AddFavorite(url,title);
							}
							else
							{
								var msg =  "Please press (CTRL-D) to bookmark us ";
								window.alert(msg);
							}
						}
						function showpopup(value)
						 {
							popUpWin = window.open(value,"Popup","width=435,Height=330,scrollbars=1,resizable=yes,top=100,left=182.5");
							popUpWin.focus();
						 }
						function getlanguagedate()
						{
							var mess='';
							mess= document.dates_form.dates_values.value;
							//alert("hello "+mess);
							document.language_form.dates_values.value = mess;
							document.language_form.submit();
						}
						function gettheatredate()
						{
							var mess='';
							mess= document.dates_form.dates_values.value;
							//alert("hello "+mess);
							document.theatre.dates_values.value = mess;
							document.theatre.submit();
						}
						function getmoviedate()
						{
							var mess='';
							mess= document.dates_form.dates_values.value;
							//alert("hello "+mess);
							document.movies.dates_values.value = mess;
							mess= document.categories.category_id.value;
							document.movies.category_id.value = mess;
							document.movies.submit();
						}
						function getcategorydate()
						{
							var mess='';
							mess= document.dates_form.dates_values.value;
							//alert("hello "+mess);
							document.categories.dates_values.value = mess;
							document.categories.submit();
						}
						function gettheatredefault()
						{
							var mess='';
							mess= document.theatre.theatre_name.value;
							//alert("hello "+mess);
							document.dates_form.theatre_name.value = 'null';							
							document.dates_form.submit();
						}
						function getsetmovieid()
						{
							var mess='';
							mess= document.movies.movie_id.value;
							//alert("hello "+mess);
							if (mess!='null' && mess!='nodata')
							{
							document.dates_form.movie_id.value = mess;							
							}
							document.dates_form.submit();						
						}
						function confirmation(message)
						{							
							var y;							
							y = confirm('You have choosen to book tickets for '+message+'\n\nPress OK to continue. CANCEL to change the date or event');							
							if(y)
							return true;
							else
								return false;
						}
					