var bookmarkurl="http://www.flywalk.co.uk/"
var bookmarktitle="Flywalk - Heelys 1st UK Specialists"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

// Javascript for new window T-shirt images
var newwindow = ''
function imgPopup(url,width,height) {
	// set defaults if no values passed for width and height
	var width = (width == null) ? 620 : width;
	var height = (height == null) ? 550 : height;
	// is popup window already open
	if (newwindow.location && !newwindow.closed) {
		newwindow.location.href = url; 
		newwindow.focus(); } 
	else { 
		newwindow=window.open(url,'htmlname','width='+width+',height='+height+',resizable=1,top=50,left=50');
		}
}


function tidy() {
if (newwindow.location && !newwindow.closed) { 
   newwindow.close(); } 
}