// (c) Dominic Wormald, This script is the interlectual property of Dominic Wormald 
function roleover(num)
{
	document.getElementById('msovertarget').innerHTML="<img src=\"images/msover/bathrooms-cornwall"+num+".jpg\"  width=\"200\" />";
}


function reset()
{
	document.getElementById('msovertarget').innerHTML="<p>SA Decorating pride themselves on creating on the quality of there work. Use your mouse to hover over the images to the right for a larger preview images</p>";
}



function fullsize(num)
{
	

	var newWin = window.open("","newWin","width=500,height=600,scrollbars=1,resizable=1")



	var html = "<html><head><title>S A Decorating</title><link href=\"style.css\" rel=\"stylesheet\" type=\"text/css\" /></head><body><table id=\"fullsize\"><tr><td><img src=\"images/fullsize/bathrooms-cornwall"+num +".jpg\" /></td></tr></table></body></html>"

//variable name of window must be included for all three of the following methods so that
//javascript knows not to write the string to this window, but instead to the new window

newWin.document.open()
newWin.document.write(html)
newWin.document.close()

} 

