/*
	PARKVIEW COMMON FUNCTIONS v.1.0
	(c) Random Media
*/

//print an embeded iframes contents -
//(used in popup windows)
function fPrint() {
	document.frames[0].focus();
	window.print();
}

//basic image swap function
function swapImage(name,image) {
	document[name].src = image;
}

//simple window open function
function openWindow(url,name) {
  popupWin = window.open(url,name,'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,dependent,width=610,height=325,left=50,top=50')
}

function openNews(id,title) {
  image = 'news/images/img_' + id + '_big.gif';
  popupWin = openChromeFrame('news/news_'+id+'.html',title,image);
}
