/* Global Javascripts */

/* Generic popup function */
function PopWin(url,name,width,height,menubar,location,toolbar,scrollbars,resizable,directories) {
	window.open(url, name, 'resizable='+resizable+',menubar='+menubar+',scrollbars='+scrollbars+',location='+location+',toolbar='+toolbar+',width='+width+',height='+height +',directories='+directories+'');
}

/* Ferieservice popup function */
function openLarge(pic) {
  window.open("/kopsalj/view-image.xml?pic=/kopsalj/images/large/"+pic, "bild", "toolbar=no, directories=no, location=no, status=no, menubar=yes, resizable=no, scrollbars=no, width=700, height=700");
}

/* Page comment functions*/
function showComments() {
  document.getElementById('showComments').style.display='none';
  document.getElementById('pageComments').style.display='block';
}
function hideComments() {
  document.getElementById('showComments').style.display='block';
  document.getElementById('pageComments').style.display='none';
}
function abuse() {
  window.open('/comment-abuse.xml?__xsl=/templates/comment-abuse-layout.xsl&amp;page=&page.path;&amp;id=&_.id;&amp;comment=&_.comment;&amp;user=&_.user_name;','abuse','scrollbars=yes,width=260,height=370')
}
/* Tip friend */
function tipFriend() {
	window.open('/tip-friend.xml?__xsl=/templates/tip-friend-layout.xsl&amp;url=&page.path;','tipsa','toolbar=no,menubar=no,width=260,height=270')
}

/* Generic rollover functions */
function rowOver(rowItem) { document.getElementById(rowItem).style.backgroundColor = '#f4f2e8'; }
function rowOut(rowItem) { document.getElementById(rowItem).style.backgroundColor = ''; }