var nSlide = 1;
var dSlide = false;

var timerID = 0;
var tStart = null;
var Id_No = 0;

var DH = 0;
var an = 0;
var al = 0;
var ai = 0;
var pickedUp = new Array("", false, 0, 0);
if (document.getElementById) {
	ai = 1;
	DH = 1;
} else {
	if (document.all) {
		al = 1;
		DH = 1;
	} else {
		browserVersion = parseInt(navigator.appVersion);
		if ((navigator.appName.indexOf('Netscape') != -1) && (browserVersion == 4)) {
			an = 1;
			DH = 1;
		}
	}
}

function getReadyToMove(element, evt) {
	pickedUp[0] = element;
	var currentSelection = document.getElementById(pickedUp[0]);
	
	pickedUp[1] = true;
	pickedUp[2] = (0 + evt.clientY - parseInt(currentSelection.style.top));
	pickedUp[3] = (0 + evt.clientX - parseInt(currentSelection.style.left));
	
	alert (currentSelection.style.left);
}

function checkLoadedObjects(evt) {
	if (pickedUp[1] == true) {
		var currentSelection = document.getElementById(pickedUp[0]);

		currentSelection.style.position = "absolute";
		currentSelection.style.top = (evt.clientY - pickedUp[2]) + "px";
		currentSelection.style.left = (evt.clientX - pickedUp[3]) + "px";
	}
}

function dropLoadedObject(evt) {
	pickedUp = new Array("", false, 0, 0);
}

function UpdateTimer() {
	if (timerID) {
		clearTimeout(timerID);
	}

	if	(!tStart)
		tStart   = new Date();

	var   tDate = new Date();
	var   tDiff = tDate.getTime() - tStart.getTime();

	tDate.setTime(tDiff);

	Id_No++;
	if (document.getElementById('TopAd')) {
		if (Id_No == 1) {
			document.getElementById('TopAd').style.display = 'block';
			//document.getElementById('TopAd').style.marginLeft = 'auto';
			//document.getElementById('TopAd').style.marginRight = 'auto';
		}

		if (Id_No < 26) {
			if (navigator.appName.indexOf("Microsoft")!= -1) document.getElementById('TopAd').filters.alpha.opacity = (Id_No) * 4;
			if (navigator.appName.indexOf("Netscape")!=-1) document.getElementById('TopAd').style.MozOpacity = (Id_No) * 0.04;
  		}
		
		if (Id_No < 201 && Id_No > 175) {
			if (navigator.appName.indexOf("Microsoft")!= -1) document.getElementById('TopAd').filters.alpha.opacity = (201 - Id_No) * 4;
			if (navigator.appName.indexOf("Netscape")!=-1) document.getElementById('TopAd').style.MozOpacity = (201 - Id_No) * 0.04;
  		}
		
		if (Id_No == 201) document.getElementById('TopAd').style.display='none';
	}
	timerID = setTimeout("UpdateTimer()", 150);
}

function UpdateTop() {
	var randomnumber = 1 + Math.floor(Math.random()*10);
	var sOpacity = nSlide;
	var img = document.getElementById('top' + randomnumber);
	
	if (img) {
		if (img.style.visibility == 'hidden') {
			if (navigator.appName.indexOf("Microsoft") != -1) img.filters.alpha.opacity = sOpacity;
			if (navigator.appName.indexOf("Netscape") !=-1) img.style.MozOpacity = sOpacity / 100;
			img.style.visibility = 'visible';
		}
		else document.getElementById('top' + randomnumber).style.visibility = 'hidden';
	}
	nSlide++;
	if (nSlide==100) {
		for (var i = 1; i <= 10; i++) {
			img = document.getElementById('top' + i);
			if (img) {
				if (dSlide) img.style.visibility = 'hidden';
				else {
					if (navigator.appName.indexOf("Microsoft") != -1) img.filters.alpha.opacity = 100;
					if (navigator.appName.indexOf("Netscape") !=-1) img.style.MozOpacity = 1;
					img.style.visibility = 'visible';
				}
			}
		}
		nSlide = 1;
		dSlide = ! dSlide;
		setTimeout("UpdateTop()", 5000);
	}
	else setTimeout("UpdateTop()", 150);
}

function StartTimer() {
	tStart = new Date();
	timerID  = setTimeout("UpdateTimer()", 150);
	setTimeout("UpdateTop()", 5000);
}

function checkform (thisform)
{
	var lReturn = true;

/* 	if (document.getElementById('person-c').value == "") {
		if (lReturn) {
			alert('Please fill out Your Name.');
			document.getElementById('person-c').focus();
			lReturn = false;
		}
	}
 */
	if (document.getElementById('email-c').value == "") {
		if (lReturn) {
			alert('Please fill out Your E-Mail Address.');
			document.getElementById('email-c').focus();
			lReturn = false;
		}
	}

/* 	if (document.getElementById('phone-c').value == "") {
		if (lReturn) {
			alert('Please fill out Your Phone Number.');
			document.getElementById('phone-c').focus();
			lReturn = false;
		}
	}
 */
	return lReturn ;
	
}

function checkcontactform (thisform)
{
	var lReturn = true;

	if (document.getElementById('person').value == "") {
		if (lReturn) {
			alert('Please fill out Your Name.');
			document.getElementById('person').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('email').value == "") {
		if (lReturn) {
			alert('Please fill out Your E-Mail Address.');
			document.getElementById('email').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('subject').value == "") {
		if (lReturn) {
			alert('Please fill out the Subject.');
			document.getElementById('subject').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('message').value == "") {
		if (lReturn) {
			alert('Please fill out the Message Body.');
			document.getElementById('message').focus();
			lReturn = false;
		}
	}

	return lReturn ;
	
}

function SetCalendarView (thisvalue) {
	window.location = "index.php?" + thisvalue;
}

function ShowMap() {
	if (document.getElementById('mainMap')) {
		var mapOptions = {
			zoom: 16,
			mapTypeId: google.maps.MapTypeId.ROADMAP,
			mapTypeControl: true,
			mapTypeControlOptions: {
				style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
				position: google.maps.ControlPosition.TOP_RIGHT
			},
			navigationControl: true,
			navigationControlOptions: {
				style: google.maps.NavigationControlStyle.ZOOM_PAN,
				position: google.maps.ControlPosition.TOP_LEFT
			},
			scaleControl: false
		};

		var map = new google.maps.Map(document.getElementById("mainMap"), mapOptions);
		var geocoder = new google.maps.Geocoder();
		var address = '43 Huntington lane Wheeling, IL 60090';

		if (geocoder) {
			geocoder.geocode( { 'address': address}, function(results, status) {
				if (status == google.maps.GeocoderStatus.OK) {
					var coord = results[0].geometry.location;
					
					var marker = new google.maps.Marker({
						position: coord, 
						map: map,
						title: address
					});
					
					var infowindow = new google.maps.InfoWindow({
						content: '<div style="width:120px"><center><small><b><nobr>AV Royal Optical</nobr><br><nobr>43 Huntington Lane</nobr><br><nobr>Wheeling, IL 60090</nobr><br>(847)&nbsp;537-2020</b></small></center></div>'
						});
					google.maps.event.addListener(marker, 'click', function() {
						infowindow.open(map,marker);
					}); 
					map.setCenter(coord);
				}
			});
		}
	}
}

function ShowDetails(evt, legend, OffsetX, OffsetY) {

	var wp = pw();
	dm = fd(legend,0);
	ew = 0;
	eh = 0;
	
	if (dm.offsetWidth) ew = dm.offsetWidth;
	else if (dm.clip.width) ew = dm.clip.width;
	
	if (dm.offsetHeight) eh = dm.offsetHeight;
	else if (dm.clip.height) eh = dm.clip.height;

	lv = mouseX(evt) + OffsetX;
	tv = mouseY(evt) + OffsetY;
	
	if (tv < 1) tv = 5;
	
	if (lv < 2) lv = 2;
	else if (lv + ew > wp) lv = wp - ew - 30;

	if (!an) {
		lv += 'px';
		tv += 'px';
	}

	document.getElementById(legend).style.left = lv;
	document.getElementById(legend).style.top = tv;
	document.getElementById(legend).style.visibility = 'visible';
	document.getElementById(legend).style.zIndex = 1;
}

function fd(oi, wS) {
	if (ai) return wS ? document.getElementById(oi).style:document.getElementById(oi);
	if (al) return wS ? document.all[oi].style: document.all[oi];
	if (an) return document.layers[oi];
}

function pw() {
	return window.innerWidth != null? window.innerWidth: document.body.clientWidth != null? document.body.clientWidth:null;
}

function mouseX(evt) {
	if (evt.pageX) return evt.pageX;
	else if (evt.clientX) return evt.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
	else return null;
}

function mouseY(evt) {
	if (evt.pageY) return evt.pageY;
	else if (evt.clientY) return evt.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
	else return null;
}

function ShowBrand(event, type) {
	document.getElementById('brandBody').innerHTML = "";
	if (type == 'Blumarine')
		document.getElementById('brandBody').innerHTML = 
		'Blumarine glasses are designed to give performance eyewear that fits, Anna Molinari has the passion for blue as with the sea colour, this is how the name Blumarine label arrived, Anna Molinari and her husband, Gianpaolo Tarabini Castellani, opened in Carpi back in 1977, over the years got stronger as a working in the family business. The Eyewear frames are made for both sexes male and female, the Material used on the frames are Acetate or Metal, some of the models come with Frame With Swarovski signature stones.';
	if (type == 'Calvin Klein')
		document.getElementById('brandBody').innerHTML = 
		'The secret of Calvin Klein\'s longevity in the fickle fashion industry most likely lies in his mantra of modernity and simplicity. "Our philosophy has to do with contemporary modern design for people of any age," explains Klein.';
	if (type == 'Chloe')
		document.getElementById('brandBody').innerHTML = 
		'It seems like every fashion designer wants to break into eyewear, and Chloe is one of the latest to take the plunge.<br>Chloe debuted its lineup of eyewear just last year, and it\'s quickly gaining fans among celebrities and fashionistas who are looking for something new and unexpected in their eyewear. Echoing the Chloe Ready-to-Wear collection, the Chloe Eyewear Collection skillfully plays with shapes and volumes, ranging from retro to aviation, timeless to oversized.<br>Grey, plum, ivory, old pink, marine or chocolate, the colors go hand-in-hand with those of Chloe\'s seasonal looks. The cases, which we love, bear a studded plate - a nice nod to Chloe\'s non-eyewear accessory line.';
	if (type == 'Christian Dior')
		document.getElementById('brandBody').innerHTML = 
		'Christian Dior is synonymous with exceptional textiles, design, and fabrication-a true icon in menswear and now in eyeglasses. The Christian Dior glasses collections awaken the Christian Dior man to a wardrobe full of color and innovative fabrics.  The feel is casual with a subtle flair of sophistication. The Christian Dior glasses collection complements this style with characteristic agility and subtlety.<br>In 1948 when his first collection featured the groundbreaking small-waisted, full-skirted "New Look" Christian Dior\'s luxurious and timeless designs attracted such icons as Marlene Dietrich and Ava Gardner. Today, John Galliano is Dior\'s artistic director, bringing a sophisticated combination of audacity, glamour and sophistication that is the hallmark of the Christian Dior eyeglasses collection. Dior glasses appeal to the modern woman with styling that is elegant, seductive, and exclusive. Dior eyeglasses are for the affluent, cosmopolitan trendsetters, or those who aspire to be. Go ahead and try a pair and see for yourself what exceptional textiles, design, and fabrication can do for you. Christian Dior is a true icon not only in women\'s fashion, but in menswear as well';
	if (type == 'Dolce Gabana')
		document.getElementById('brandBody').innerHTML = 
		'Dolce &amp; Gabbana and D&amp;G Dolce &amp; Gabbana, are the leaders behind the company\'s intensive growth. The two founders, Domenico Dolce and Stefano Gabbana, have always been the creative source of the Group\'s brands, D&amp;G Dolce &amp; Gabbana is Irony: a fashion label inspired by the street. Dolce &amp; Gabbana brand was created in 1985 and has grown to become one of the top luxury goods Groups in the world. Dolce &amp; Gabbana and D&amp;G fragrances and eyewear sunglasses and D&amp;G Dolce &amp; Gabbana clothing, watches and jewels are instead currently managed under licensing agreements. Dolce &amp; Gabbana eyewear world known and top of fashion, with their high standards of quality, all Sunglasses has 100% UVA-UVB protection.';
	if (type == 'Ed Hardy')
		document.getElementById('brandBody').innerHTML = 
		'Ed Hardy Eeywear have the look and style to make you feel like a million. Encrusted in Swarovski Crystals, Ed Hardys are not for the person who does not want to be noticed.<br>Brand Ed Hardy was established in 2004, designer Christian Odizhe, which is used in their collections motives tattoos of famous American tattoo artist Don Ed Hardy. Collections of clothes Ed Hardy immediately began to enjoy tremendous success among the stars of show business, becoming the hottest brand of America. The collection of sunglasses Ed Hardy famous tattoo motifs are supplemented by clever use of rhinestones and other finishes. Bright and unusual collection has all chances to become one of the best in a new season. ';

	if (type == 'Escada')
		document.getElementById('brandBody').innerHTML = 
		'ESCADA an leading international fashion group in women\'s designer fashion. Escada has pursued a course of steady expansion since its founding in 1976 by Margaretha and Wolfgang Ley, ESCADA is well known for its high quality, outstanding and comfortable fit. The new 2008/09 collection with a Light wrap and Rhinestones make the frame more outstanding for the woman.<br>Whether she lives in Toronto, New York or London, the Escada customer is an international woman. She has an incredible spectrum of abilities and faces many challenges, which she takes very seriously.';
	if (type == 'ETE')
		document.getElementById('brandBody').innerHTML = 
		'Handmade in Italy. The original idea behind the Ete collection was to take a fashion accessory used in the clothing industry-in this case, feathers-and adapt it to the eyeglass industry. Frames are made from laminated acetate (some styles are metal/acetate combinations) with actual feathers placed inside by hand and feature intricate carvings on the front and temples. Set yourself apart with these stylish and unique frames!';
	if (type == 'GFFerre')
		document.getElementById('brandBody').innerHTML = 
		'Gianfranco Ferre born on 1944, in Legnano northern Italy, he began his fashion career in 1970 by designing accessories. He started his own company in 1974 and launched his signature collection for women in 1978. His first men\'s collection appeared in 1982. Ferre became Stylistic Director of Christian Dior in Paris in 1989, when he was chosen by owner Bernard Arnault to replace Marc Bohan it was announced later that Ferre would end his engagement with Dior. Ferre has Occhio d\'Oro Award (six times) for Best Italian Designer and a TopAd Medal from the City of Milan. The hi-tech elaborations made possible by a unique know-how: the elements that have always distinguished the eyewear and designing accessories';
	if (type == 'Fendi')
		document.getElementById('brandBody').innerHTML = 
		'Fendi is an Italian fashion designer brand founded in 1918, an brand famous for its selection of shoes and furs. Fendi boutiques can be found all over the world. Today the sunglasses and ophthalmic collections are not to be missed - luxurious and ultra-feminine, the plastics are rich and sensual - made even more luxurious with the addition of rhinestones. The ophthalmic ranges appeal to both the trendy and classic Fendi consumers, with beautiful detailing, coloring, and feminine eye shapes that enhance every wearer\'s features.';
	if (type == 'Flair')
		document.getElementById('brandBody').innerHTML = 
		'As exclusive and unique as your face. Flair has been creating eyewear designs of highest aesthetics and perfection in Germany for over 60 years. "Made in Germany", guarantees Precision, Perfection and Quality eyewear with no equal. The designs are elegant, high tech and unmistakably Flair. Their frames will enhance anyone\'s individuality. Only the finest materials like high tech nickel-free Bio Steel are used to ensure the highest elasticity and strength. Made with special High-Grade Titanium to keep weight down to the very minimum, comfort and fit guaranteed. Colors are always based on the latest European fashion trends.';
	if (type == 'Givenchy')
		document.getElementById('brandBody').innerHTML = 
		'Givenchy, the Parisian Haute-Couture House embraces all these qualities. From the delicate spider-web like lace on a couture dress to the hand-stitched lapel of a mans suit or the shimmering silver reflection on sunglasses, Givenchy has stood for intriguing beauty since 1952, when "Hubert de Givenchy" opened the couture house. In 1953, Hubert de Givenchy met and was inspired by Audrey Hepburn, who became the brands ambassador. In 1973, Givenchy presented his first menswear collection under the Gentleman Givenchy label. Thirty years later, men\'s Ready-to-Wear accounts for nearly 40 percent of sales, and some 100,000 ready-to-wear items are produced each season. In 1988, Givenchy was sold to LVMH, the world\'s largest premium brand wine, spirits and Fashion Company. Shortly thereafter, in 1995, Hubert de Givenchy stepped down and passed the reins of the world\'s pre-eminent Haut Couture house to the next generation, John Galliano and Alexander McQueen. Givenchy\'s new focus is sporty chic aiming to make the label both more fun and accessible, whilst maintaining the rigorous excellence of the Givenchy brand name also with Givenchy sunglass collection embodies sporty chic. Coloured acetate frames and refined metallic frames with splashes of colour with Givenchy monogrammed temples.';
	if (type == 'Gucci')
		document.getElementById('brandBody').innerHTML = 
		'Since 1921, Gucci has been providing innovative fashions and craftsmanship for men and women around the world. Discover what makes Gucci one of the top names for apparel and accessories.';
	if (type == 'Iceberg')
		document.getElementById('brandBody').innerHTML = 
		'ICEBERG in 1962 Giuliana Marchini Gerani discovered her love for knitwear and arrived in 1974 at the revolutionary idea of brightly coloured knitwear which was both sporty and trendy. Today Iceberg is a defining force in this colourful world with sporty, refined and cosmopolitan, products that are full of personality. The Iceberg eyewear Collection is no exception, first introduced at the Mido in 2006, with the sunglasses Collection being debuted in Paris during the Silmo last October. Creative and original, characterised by a strong mix of tradition and technology: this is the essence of the ICEBERG glasses collection.';

	if (type == 'Just Cavalli')
		document.getElementById('brandBody').innerHTML = 
		'Cavalli is synonymous with glamour and rock. Look to Just Cavalli for color, and lots of it. A genius when it comes to leather, his designs are wild, sexy, erotic, and fluid. His materials vary (leather, denim, silk, feathers) but the results are often unforgettable.';
	if (type == 'MauiJim')
		document.getElementById('brandBody').innerHTML = 
		'Aloha! Born on the sunny beaches of Hawaii in the early 1980s, Maui Jim&reg; Sunglasses were born out of need. In this case, the need was for a sunglasses that would eliminate the harsh Hawaiian glare without distorting the beautiful colors of the island scenery. Everyone said it was impossible. The elimination of glare and color clarity just did not go together. After years of research and development, the impossible became a reality.<br>' +
		'Now you can open your eyes to a whole new world of color with Maui Jim Sunglasses featuring PolarizedPlus&reg;2 lens technology-the most advanced polarized lens technology on Earth. It has the power to face down glare and extinguish it completely. Maui Jims patented multi-layered lens design allows more usable light to be transmitted to the eyes. Unrivaled visual acuity, contrast and color are the exquisite results. You will experience deeper, more saturated colors and higher levels of contrast in any environment. ';
	if (type == 'Missoni')
		document.getElementById('brandBody').innerHTML = 
		'Ottavio Missoni, Tai to friends and intimates, is born in 1953, on the Dalmatian coast, to Teresa De Vidovich, Countess of Capocesto and Ragosniza, and the Sea Captain Vittorio Missoni, the son of a Friulano magistrate. The Missoni name has been synonymous with the design of knitted textiles for the last forty years. The distinctive style is recognized - and copied - all over the world and has established a huge following for the unique use of colour and pattern. Missoni launched the new eyewear line with the belief that clothing and eyewear should accentuate the wearer?s personality and allow them to play and change.';
	if (type == 'Mont Blanc')
		document.getElementById('brandBody').innerHTML = 
		'The new Mont Blanc eyewear collection is a fascinating mixture of modern shapes and styles combined with classical values of aesthetic timeless designs and understated elegance. A collection uniting master craftsmanship with high tech materials, to lead to unique and exclusive objects.';
	if (type == 'Neostyle')
		document.getElementById('brandBody').innerHTML = 
		'Neostyle eyewear offers a frame to fit the personality of any individual, and being an individual is really what it\'s all about, isn\'t it?';
	if (type == 'Roberto Cavlli')
		document.getElementById('brandBody').innerHTML = 
		'Roberto Cavalli\'s brings style and glamour with his new frames and sunglasses. Cavalli is known for using wild animal prints and sexualized cuts in his design, leading to comparisons with designer Gianni Versace and his popularity with many young celebrities. Born in 1940 and grew up in Florence in an extremely artistic family, Roberto Cavalli enrolled aged 17 at the Institute of Art of Florence, he always a very original and innovative man and tries continually to experiment with new technologies to create his materials. He was always surrounded by art and fashion which should come as no surprise to anyone familiar with his artistry. He showed his first collection in 1972 and has since grown into a fashion force that has spanned decades and continents He has always had a penchant for python, zebra and leopard prints and his attraction for animal prints that today has become his brand signature.';
		
	if (type == 'Salvatore Ferragamo')
		document.getElementById('brandBody').innerHTML = 
		'Redefining luxury, Salvatore Ferragamo\'s latest collection of frames moves in the breeze of current trends with the evolving creativity that enchants and delights in a new luxurious sense of the word. Extraordinary design features, precious handcrafted detailing and strikingly superior materials identify Salvatore Ferragamo eyewear immediately as highly distinctive, eloquently modern and utterly elegant. The new Eyewear collection is a wonderfully fresh restatement of everything that\'s creative and sophisticated in the House of Salvatore Ferragamo. The creations include eighteen ladies models and four men?s, as well as up-dates of four Sole models. The style icons of the Florentine brand reassert themselves in a brilliant show of intriguing designs, striking details and prestige materials. The Women\'s models indulge a preference for vivacious reds, sylvan green, wisteria and mother-of-pearl effect ivory in the acetate frames and Monel Alpacca in the metal ones. The ever distinctive femininity of the Ferragamo Woman will be fatally attracted by the jewellery frames, with their uncluttered lines and hammered-effect temples adorned with rows of crystals.';
	if (type == 'Silhouette')
		document.getElementById('brandBody').innerHTML = 
		'With UV exposure such an important concern today - what with the link to macular degeneration - these lenses are as applicable to the average Joe on the street as an astronaut. Involving the perfect interaction of design, innovative manufacturing techniques, and high-tech materials, Silhouette has produced most likely the lightest-weight eyewear in the world. With their dynamically curving, super-elastic titanium temples, a feeling of delicacy is portrayed, while actually exhibiting extraordinary strength and flexibility. A hingeless design marks another unique trait for Silhouette, as it avoids the use of screws, keeping the integrity of its\' flowing lines. Polycarbonate lenses for sunglasses are provided and correspond to the highest of quality requirements. They are lightweight, scratch-resistant, and virtually break-proof, while offering 100% UV protection. Flash coatings in high-tech silver or TopAd provide excellent protection against strong sunlight as well as offering a futuristic look with striking impact. Innovative lens colours emphasize character, trendy colours of brown, green and blue give a look of cool understatement.';
	if (type == 'Tom Ford')
		document.getElementById('brandBody').innerHTML = 
		'Tom Ford was Born in Austin, Texas and raised in Santa Fe, New Mexico, Tom Ford is among the most highly respected and successful designers today. Tom Ford introduces a new line of optical eyeframes and sunglasses, of designs for men and women. The original collection bears the distinctive mark of the sleek luxury and style of the designer is known for. The TOM FORD eyewear collection is handmade by Marcolin in Italy.';
	if (type == 'Vogue')
		document.getElementById('brandBody').innerHTML = 
		'Vogue is fashion, color, and style. The Vogue eyeglasses line epitomizes the youthful, dynamic style of those who always want to keep up with the times. An true to the brand\'s style, this eyewear is synonymous with fashion. Vogue puts glamour to the fore, responding to the desire of eyewear users desire to transform their face and project an edgy modern look for all situations. The focus on versatility and ostentation that inspired these models is confirmed by the prevalence of plastic over metal. The new collection has three main themes, Strass & Borchie, Be Vogue and I Classici. Vogue\'s femininity and glamour, who is again endorsing the optical and sun collections in the Italian market. Vogue by Luxottica eyewear collections continue to put the accent on attention to detail in design and a ceaseless search for innovations in style. The name Vogue is synonymous with an instantly recognisable look that highlights authentic femininity and glamour, interpreting the best in fashion and incorporating the very latest styles in its models.';

	ShowDetails(event, 'brandDesc', -150, -380);
}

function checkexamform (thisform)
{
	var lReturn = true;

	if (document.getElementById('firstName').value == "") {
		if (lReturn) {
			alert('Please fill out Your First Name.');
			document.getElementById('firstName').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('lastName').value == "") {
		if (lReturn) {
			alert('Please fill out Your Last Name.');
			document.getElementById('lastName').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('email').value == "") {
		if (lReturn) {
			alert('Please fill out Your E-Mail Address.');
			document.getElementById('email').focus();
			lReturn = false;
		}
	}

	if (document.getElementById('phone').value == "") {
		if (lReturn) {
			alert('Please fill out Your Phone Number.');
			document.getElementById('phone').focus();
			lReturn = false;
		}
	}
	
	return lReturn ;
	
}
