
//Open links in new window
var win = null;
function newWin(page, name)
{
	var win = window.open(page, name, 'height=400, width=400, top=200, left=200, resizable=yes, scrollbars=yes');
}

//thumbnail viewer
function newImgWin(image, name)
{
	var win=window.open(image, name, 'height=400, width=400');
}

//Print current page
function printPage()
{
	var text = this.document;
	print(text);
}

//Quick link dropdown menu
function quickLink(form)
{
	var index = document.qLink.links.selectedIndex; 

	if (index > 0)
	 { 
		var target = document.qLink.links.options[ index ].value; 
		window.open(target, "main");


	} 

} 

//Protect email address
function email()
{
	var contact = ('mgr@' + 'scrapnstampink.com');
	document.write('<a href="mailto:' + contact + ' ">' + contact + '</a>');	
}

//Display date/time page last updated
function docModified()
{
	document.update.lm.value = document.lastModified;

}