﻿function pageScrollToTop() {
    
    scroll(0,0);
    
	//Grab our current Url
	var url = window.location.toString();
	//Remove anchor from url
	var anchor_index = url.indexOf('#');
	if (anchor_index != -1) {
		url = url.substring(0, anchor_index);
	}
	
}
